type crypto/aes.aesCipher

7 uses

	crypto/aes (current package)
		cipher.go#L18: type aesCipher struct {
		cipher.go#L51: 	c := aesCipher{l: uint8(len(key) + 28)}
		cipher.go#L56: func (c *aesCipher) BlockSize() int { return BlockSize }
		cipher.go#L58: func (c *aesCipher) Encrypt(dst, src []byte) {
		cipher.go#L71: func (c *aesCipher) Decrypt(dst, src []byte) {
		cipher_asm.go#L29: 	aesCipher
		cipher_asm.go#L49: 	c := aesCipherGCM{aesCipherAsm{aesCipher{l: uint8(len(key) + 28)}}}